home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Frameworks / TransSkel 3.24 / Source / Dialog Item Stuff / SkelSetDlogCtlHilite.c < prev    next >
Text File  |  1996-01-17  |  386b  |  15 lines

  1. /*
  2.  * Set hiliting value of control associated with a dialog item.
  3.  * Doesn't set it if it already has that value, in order to minimize
  4.  * drawing.  Returns true if the value was actually changed, false if not.
  5.  */
  6.  
  7. # include    "TransSkel.h"
  8.  
  9.  
  10. pascal Boolean
  11. SkelSetDlogCtlHilite (DialogPtr d, short item, short hilite)
  12. {
  13.     return (SkelHiliteControl (SkelGetDlogCtl (d, item), hilite));
  14. }
  15.